English
Retrieves a paginated list of all catalogs that match the specified query conditions.
cURL
curl --request GET \ --url https://your_a2_service/catalogs \ --header 'Authorization: Bearer <token>'
{ "items": [ { "metadata": { "category": "<string>", "id": "<string>", "image_link": "<string>", "title": "<string>", "brand": "<string>", "created_at": "2023-11-07T05:31:56Z", "link": "<string>", "seller_name": "<string>", "updated_at": "2023-11-07T05:31:56Z" }, "id": "", "schema": "creative.catalog", "source": "<string>" } ], "pagination": { "page": 123, "page_size": 123, "total": 123, "total_pages": 123 } }
The access token received from the authorization server in the OAuth 2.0 flow.
Successful Response
Schema for paginated catalog results.
Contains a list of catalog items and associated pagination information.
Show child attributes
The metadata of catalog item.
The schema defined by schema field specifies the minimum required fields. Additional fields beyond the schema definition are allowed and will be preserved.
schema
The category of catalog item
The ID of catalog item
The image link of catalog item
The title of catalog item
The brand of catalog item
The created at of catalog item
The link of catalog item
The seller name of catalog item
The updated at of catalog item
The schema of catalog item.
Supported schema:
creative.catalog
CatalogMetadataSchema
"creative.catalog"
The source of catalog item
Pagination information including total items, current page, page size, and total pages.
Was this page helpful?